Skip to main content

Router Data Provider

The RouterDataProvider component is responsible for rendering child components with router context and executing data fetchers on path change.

It accepts 3 parameters:

PropUse
initialStateInitial state of the data provider, mostly used to hydrate the client with data from the server.
fetcherArgsAn object passed to all fetcher functions.
configGlobal configuration options for the data provider.
src/js/routes/index.js
import { RouterDataProvider } from '@tata1mg/router';

<RouterDataProvider initialState={} fetcherArgs={} config={}>
{/* Your components */}
</RouterDataProvider>